home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Business Master (3rd Edition)
/
The Business Master (3rd Edition).iso
/
files
/
utilreen
/
esftsr
/
register.bat
< prev
next >
Wrap
DOS Batch File
|
1993-06-11
|
1KB
|
29 lines
echo off
cls
echo ┌────────────────────────────────────────────────────────────────────────┐
echo │ We are now ready to print a copy of the registration form for TSR │
echo │ Download. Registered users receive a version with no shareware message,│
echo │ extra utilities, a perfect bound manual, a book about soft fonts, a │
echo │ free CompuServe account with $15 access credit, access to technical │
echo │ support and can purchase a collection of 84 Roman and Helv fonts for │
echo │ an additional $30. │
echo │ │
echo │ Make sure your printer is on and ready to run. Then press the enter │
echo │ key to print a copy of the shareware registration form. │
echo │ │
echo │ If you *don't* want to print this, press the Ctrl-C key now to abort │
echo │ this batch file and return to INSTALL. │
echo └────────────────────────────────────────────────────────────────────────┘
if "%1"=="" goto bad
pause
copy register.doc %1:
goto good
:bad
echo You must include a printer port in the command for this batch file. Try:
echo REGISTER LPT1
echo or
echo REGISTER COM2
:good